DataSource for Entity Framework in WPF
C1.Data Namespace / FilteredView<T> Class / BindFilterKey Method / BindFilterKey(Object,String) Method
The object to bind to. Cannot be null.
The property path to bind to.

In This Topic
    BindFilterKey(Object,String) Method
    In This Topic
    Binds the FilterKey property to a given path on a given source.
    Syntax
    'Declaration
     
    Public Overloads Function BindFilterKey( _
       ByVal source As Object, _
       ByVal path As String _
    ) As FilteredView(Of T)
    public FilteredView<T> BindFilterKey( 
       object source,
       string path
    )

    Parameters

    source
    The object to bind to. Cannot be null.
    path
    The property path to bind to.

    Return Value

    The same FilteredView<T> on which this method was called.
    Exceptions
    ExceptionDescription
    source is null.
    See Also